home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 April / Designer's Club 1998 April.iso / pc / Ideasrc / SPLASH.DIR / 00051_Script_51 < prev   
Text File  |  1998-03-13  |  306b  |  15 lines

  1. on exitFrame
  2.     repeat with n=15 to 19
  3.     if rollover(n) then
  4.       set the visible of sprite n to false
  5.       updatestage
  6.     end if
  7.   end repeat
  8.   
  9.   repeat with n=15 to 19
  10.     if not rollover(n) then
  11.       set the visible of sprite n to true
  12.       updatestage
  13.     end if
  14.   end repeat
  15. end